home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Extensions… / Additions ƒ / Additions.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  1.5 KB  |  66 lines  |  [TEXT/MPS ]

  1. ;--------------------------------------------------------------------------------
  2. ;FILENAME
  3. ;    Additions.a
  4. ;    
  5. ;DESCRIPTION
  6. ;    This file contains the jump table for the Additions printing extension.
  7. ;        
  8. ;COPYRIGHT
  9. ;     Copyright Apple Computer, Inc. 1991
  10. ;     All rights reserved. 
  11. ;
  12. ;MODIFICATION HISTORY:
  13. ;        4/17/91     ALA        Initial creation.
  14. ;    
  15.  
  16. ;================= EXPORTED ROUTINES =================
  17.  
  18.                         EXPORT    AdditionsIntf
  19.                         
  20. ;================= IMPORTED ROUTINES =================
  21.  
  22.                         IMPORT    InitializeMessageProc
  23.                         IMPORT    DespoolPageMessageProc
  24.                         IMPORT    StartJobMessageProc
  25.                         IMPORT    FinishJobMessageProc
  26.                         IMPORT    RenderPageMessageProc
  27.                         IMPORT    PrintDlgMessageProc
  28.                         IMPORT    CleanupStartJobMessageProc
  29.  
  30. ;================= Jump Table =================
  31.  
  32. AdditionsIntf        PROC
  33.  
  34.                         dc.l        0                                ;    Long word required by the Printing Manager
  35.             
  36.                         IMPORT    InitializeMessageProc
  37.                         JMP        InitializeMessageProc
  38.  
  39.                         IMPORT    DespoolPageMessageProc
  40.                         JMP        DespoolPageMessageProc
  41.  
  42.                         IMPORT    StartJobMessageProc
  43.                         JMP        StartJobMessageProc
  44.  
  45.                         IMPORT    FinishJobMessageProc
  46.                         JMP        FinishJobMessageProc
  47.  
  48.                         IMPORT    RenderPageMessageProc
  49.                         JMP        RenderPageMessageProc
  50.  
  51.                         IMPORT    PrintDlgMessageProc
  52.                         JMP        PrintDlgMessageProc
  53.  
  54.                         IMPORT    CleanupStartJobMessageProc
  55.                         JMP        CleanupStartJobMessageProc
  56.  
  57.                         IMPORT    PanelFilterMessageProc
  58.                         JMP        PanelFilterMessageProc
  59.  
  60.                         IMPORT    PanelEventMessageProc
  61.                         JMP        PanelEventMessageProc
  62.  
  63.                         ENDPROC
  64.                         
  65.                 END
  66.